home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / msjv6-5.zip / WINDOS.ZIP / HELLO2.C < prev    next >
C/C++ Source or Header  |  1991-09-01  |  124b  |  11 lines

  1. /* HELLO2.C */
  2.  
  3. #include <stdio.h>
  4.  
  5. main(int argc, char *argv[])
  6. {
  7.     printf("hello world!\n");
  8.     return 0;
  9. }
  10.  
  11.